home *** CD-ROM | disk | other *** search
/ Trusted Irix /B 4.0.4 / Trusted-Irix B-4.0.1.iso / dist / eoe1.idb / usr / tutor / .login.z / .login (.txt)
Text File  |  1992-04-03  |  1KB  |  45 lines

  1. #
  2. # /usr/people/tutor/.login - login script for tutor
  3. #
  4. # This file gets read by the C shell once when the user first logs in and
  5. # once for each shell window that is opened.
  6. #
  7. echo
  8. echo "Welcome to the tutor directory."
  9. echo
  10.  
  11. # Set-up terminal environment variables.
  12. eval `tset -s -Q`
  13.  
  14. # Change keyboard control characters to nice values.
  15. if (-t 0) then
  16.     stty intr '^C' echoe 
  17. endif
  18.  
  19. # Set default X server
  20. if ($?DISPLAY == 0) then
  21.     if ($?REMOTEHOST) then
  22.     setenv DISPLAY ${REMOTEHOST}:0
  23.     else
  24.     setenv DISPLAY :0
  25.     endif
  26. endif
  27.  
  28. # Restore the tutorial directories and supporting WorkSpace files to their
  29. # factory settings.
  30. if (`who | grep tutor | wc -l`x == "1"x) then
  31.     echo "Preparing the tutorial..."
  32.     find getstart -exec chmod u+w {} \;
  33.     find .workspace -exec chmod u+w {} \;
  34.     find DoubleClickMe ! -type l -exec chmod u+w {} \;
  35.     rm -rf getstart; mkdir getstart
  36.     rm -rf .workspace; mkdir .workspace
  37.     rm -rf DoubleClickMe; mkdir DoubleClickMe
  38.     uncompress -c .getstart | (cd getstart; tar xBf -)
  39.     uncompress -c ..workspace | (cd .workspace; tar xBf -)
  40.     uncompress -c .DoubleClickMe | (cd DoubleClickMe; tar xBf -)
  41.     workspace
  42.     sleep 4
  43.     echo "Completed."
  44. endif
  45.